home *** CD-ROM | disk | FTP | other *** search
/ Macwelt 4 / Macwelt DVD 4.cdr / Entwickler / Mac-OS / oxygen / oxygen.app / Contents / Resources / Java / jh.jar / javax / help / HelpBroker.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-06-24  |  1.5 KB  |  66 lines

  1. package javax.help;
  2.  
  3. import java.awt.Component;
  4. import java.awt.Dimension;
  5. import java.awt.Font;
  6. import java.awt.MenuItem;
  7. import java.awt.Point;
  8. import java.net.URL;
  9. import java.util.Locale;
  10.  
  11. public interface HelpBroker {
  12.    void setHelpSet(HelpSet var1);
  13.  
  14.    HelpSet getHelpSet();
  15.  
  16.    Locale getLocale();
  17.  
  18.    void setLocale(Locale var1);
  19.  
  20.    Font getFont();
  21.  
  22.    void setFont(Font var1);
  23.  
  24.    void setCurrentView(String var1);
  25.  
  26.    String getCurrentView();
  27.  
  28.    void initPresentation();
  29.  
  30.    void setDisplayed(boolean var1) throws UnsupportedOperationException;
  31.  
  32.    boolean isDisplayed();
  33.  
  34.    void setLocation(Point var1) throws UnsupportedOperationException;
  35.  
  36.    Point getLocation() throws UnsupportedOperationException;
  37.  
  38.    void setSize(Dimension var1) throws UnsupportedOperationException;
  39.  
  40.    Dimension getSize() throws UnsupportedOperationException;
  41.  
  42.    void setViewDisplayed(boolean var1);
  43.  
  44.    boolean isViewDisplayed();
  45.  
  46.    void setCurrentID(Map.ID var1) throws InvalidHelpSetContextException;
  47.  
  48.    void setCurrentID(String var1) throws BadIDException;
  49.  
  50.    Map.ID getCurrentID();
  51.  
  52.    void setCurrentURL(URL var1);
  53.  
  54.    URL getCurrentURL();
  55.  
  56.    void enableHelpKey(Component var1, String var2, HelpSet var3);
  57.  
  58.    void enableHelp(Component var1, String var2, HelpSet var3);
  59.  
  60.    void enableHelp(MenuItem var1, String var2, HelpSet var3);
  61.  
  62.    void enableHelpOnButton(Component var1, String var2, HelpSet var3) throws IllegalArgumentException;
  63.  
  64.    void enableHelpOnButton(MenuItem var1, String var2, HelpSet var3);
  65. }
  66.